Backported Google Talk mail notification support and disabling of the mail notificati...
[adiumx.git] / Frameworks / Adium Framework / BZProgressView.h
blob8d6371852b2cbe0d71571c25ddc34500a3550276
1 //
2 // BZProgressView.h
3 // Adium
4 //
5 // Created by Mac-arena the Bored Zo on Sat May 08 2004.
6 //
8 #import <Foundation/Foundation.h>
9 #import "BZProgressTracker.h"
11 #define PROGRESS_VIEW_GUTTER 8.0
12 #define PROGRESS_VIEW_BAR_HEIGHT 14.0
13 #define PROGRESS_VIEW_FIELD_HEIGHT 14.0
15 @interface BZProgressView : NSView {
16 id <BZProgressTracker> myTracker;
18 IBOutlet NSTextField *statusField;
19 IBOutlet NSProgressIndicator *progressBar;
22 - initWithTracker:(id <BZProgressTracker>)tracker inFrame:(NSRect)frame;
24 - (void)setTracker:(id <BZProgressTracker>)tracker;
25 - (id <BZProgressTracker>)tracker;
27 - (void)update;
28 - (void)updateWithTracker:(id <BZProgressTracker>)tracker;
30 + (float)height;
32 @end